## ventas_vehiculos

import matplotlib.pyplot as plt

plt.scatter(df["Fecha"], df["Precio Venta Real"])
plt.xlabel('Fecha')
plt.ylabel('Precio Venta Real')
plt.title('Fecha and Real Sale Price Analysis')
plt.show()